Hi,
In the html <a> element the href attribute can be for absolute or relative urls.
I would like to use:
echo $this->tag->linkTo($page->before,'<');The problem I am having is this results in:
<a href="/myBaseUrl/5"> < </a>When I need:
<a href="5"> < </a>Is there a way to use $this->tag->linkTo in relative mode?